home *** CD-ROM | disk | FTP | other *** search
/ Compendium Deluxe 2 / LSD and 17bit Compendium Deluxe - Volume II.iso / a / prog / misc / gfront11.lha / GUIFront / Demos / Source / smakefile < prev    next >
Makefile  |  1994-06-14  |  359b  |  20 lines

  1. #.SILENT:
  2.  
  3. all: threebut threebut2
  4.  
  5. .c.o:
  6.    sc $*
  7.  
  8. threebut: mystartup.o generic.o threebut.o
  9.     sc link generic.o threebut.o to threebut
  10.     delete threebut.lnk
  11.  
  12. threebut2: mystartup.o generic.o threebut2.o
  13.     sc link generic.o threebut2.o to threebut2
  14.     delete threebut2.lnk
  15.  
  16. threebut.o:  threebut.c
  17. threebut2.o:  threebut2.c
  18.  
  19. mystartup.o: mystartup.c
  20.